home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Begin VB.Form Form1
- BorderStyle = 1 'Fixed Single
- Caption = "Connector"
- ClientHeight = 1545
- ClientLeft = 45
- ClientTop = 330
- ClientWidth = 1815
- LinkTopic = "Form1"
- MaxButton = 0 'False
- MinButton = 0 'False
- ScaleHeight = 1545
- ScaleWidth = 1815
- StartUpPosition = 3 'Windows Default
- Begin VB.CheckBox ArrowSecond
- Caption = "Arrow2"
- Height = 495
- Left = 360
- TabIndex = 2
- Top = 480
- Width = 1455
- End
- Begin VB.CheckBox ArrowFirst
- Caption = "Arrow1"
- Height = 495
- Left = 360
- TabIndex = 1
- Top = 120
- Width = 1215
- End
- Begin VB.CommandButton cmdOK
- Caption = "OK"
- Height = 375
- Left = 360
- TabIndex = 0
- Top = 1080
- Width = 1095
- End
- Attribute VB_Name = "Form1"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Option Explicit
- '/******************************************************************/
- '/* */
- '/* TurboCAD for Windows */
- '/* Copyright (c) 1993 - 2001 */
- '/* International Microcomputer Software, Inc. */
- '/* (IMSI) */
- '/* All rights reserved. */
- '/* */
- '/******************************************************************/
- ' Storage for read-only property indicating whether
- ' or not the dialog box was cancelled. Default is
- ' False. Note that the declaration is Private, so
- ' that the value cannot be set from the OLE client
- ' application. The client reads the value using the
- ' DialogCancelled property.
- Private blnDialogCanceled As Boolean
- ' Read-only property indicating cancellation of the
- ' dialog.
- Property Get DialogCanceled() As Boolean
- DialogCanceled = blnDialogCanceled
- End Property
- Private Sub cmdOK_Click()
- Me.Hide
- End Sub
-